﻿

.product-panel {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

/* Scope everything under product panel only */
.product-panel .product-card {
    width: 45%;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.product-panel .product-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
}
.product-panel .product-desc {
    font-size: 13px;
    color: #666;
    min-height: 20px;   /* keeps cards equal height */
    margin-bottom: 1px;
}

.product-panel .product-price {
    font-weight: bold;
    color: #28a745;
}
